/******************************************************************************* * Copyright (c) 2005, 2015 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.ui.handlers; import java.util.Hashtable; import org.eclipse.core.runtime.IConfigurationElement; import org.eclipse.core.runtime.IExecutableExtension; import org.eclipse.jface.commands.RadioState; /** * <p> * A radio state that can be read from the registry. This stores a piece of * boolean state information that is grouped with other boolean state to form a * radio group. In a single radio group, there can be at most one state who * value is {@link Boolean#TRUE} all the others must be {@link Boolean#FALSE}. * </p> * <p> * When parsing from the registry, this state understands three parameters: * <code>default</code>, which is the default value for this item; * <code>persisted</code>, which is whether the state should be persisted * between sessions; <code>id</code>, which is the identifier of the group to * which this radio handler belongs. The <code>default</code> parameter * defaults to <code>false</code>, and the <code>persisted</code> parameter * defaults to <code>true</code>. If only one parameter is passed (i.e., * using the class name followed by a colon), then it is assumed to be the * <code>id</code> parameter. The <code>id</code> is required for this class * to function properly. * </p> * <p> * Clients may instantiate this class, but must not extend. * </p> * * @since 3.2 */ public final class RegistryRadioState extends RadioState implements IExecutableExtension { /** * Reads the <code>default</code> parameter from the given string. This * converts the string to a boolean, using <code>true</code> as the * default. * * @param defaultString * The string to parse; may be <code>null</code>. */ private final void readDefault(final String defaultString) { if ("true".equalsIgnoreCase(defaultString)) { //$NON-NLS-1$ setValue(Boolean.TRUE); } } /** * Reads the <code>persisted</code> parameter from the given string. This * converts the string to a boolean, using <code>true</code> as the * default. * * @param persistedString * The string to parse; may be <code>null</code>. */ private final void readPersisted(final String persistedString) { if ("false".equalsIgnoreCase(persistedString)) { //$NON-NLS-1$ setShouldPersist(false); } setShouldPersist(true); } @Override public final void setInitializationData( final IConfigurationElement configurationElement, final String propertyName, final Object data) { if (data instanceof String) { // This is the default value. setRadioGroupIdentifier((String) data); setValue(Boolean.FALSE); setShouldPersist(true); } else if (data instanceof Hashtable) { final Hashtable parameters = (Hashtable) data; final Object defaultObject = parameters.get("default"); //$NON-NLS-1$ if (defaultObject instanceof String) { readDefault((String) defaultObject); } final Object persistedObject = parameters.get("persisted"); //$NON-NLS-1$ if (persistedObject instanceof String) { readPersisted((String) persistedObject); } final Object idObject = parameters.get("id"); //$NON-NLS-1$ if (idObject instanceof String) { setRadioGroupIdentifier((String) idObject); } } else { setShouldPersist(true); } } }